DataSource for Entity Framework in WPF
C1.LiveLinq.Collections Namespace / IndexedCollection<T> Class / InsertItem Method
The zero-based ordinal at which the item must be inserted.
The object to insert.

In This Topic
    InsertItem Method (IndexedCollection<T>)
    In This Topic
    Inserts an element into the IndexedCollection<T> at the specified ordinal position.
    Syntax
    'Declaration
     
    Protected Overrides Sub InsertItem( _
       ByVal ordinal As Integer, _
       ByVal item As T _
    ) 
    protected override void InsertItem( 
       int ordinal,
       T item
    )

    Parameters

    ordinal
    The zero-based ordinal at which the item must be inserted.
    item
    The object to insert.
    See Also